home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-06-14 | 728 b | 35 lines | [TEXT/CWIE] |
- // EvenMoreFiles.h
- // Copyright © 1999 Polaschek Computing, Inc. All rights reserved.
- //
- // File utility functions I needed
- //
-
- #ifndef EvenMoreFiles_H
- #define EvenMoreFiles_H
-
- #if PRAGMA_ONCE
- #pragma once
- #endif
-
- #ifndef __FILES__
- #include <Files.h>
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- OSErr FSpGetFXInfo(const FSSpec* spec, FXInfo* xInfo);
- OSErr FSpSetFXInfo(const FSSpec* spec, FXInfo* xInfo);
- OSErr FSpGetExtendedFileInfo(const FSSpec* spec, ExtendedFileInfo* extendedInfo);
- OSErr FSpSetExtendedFileInfo(const FSSpec* spec, ExtendedFileInfo* extendedInfo);
-
- // It would probably make sense to have the DSInfo's as well, but
- // I don't need 'em just yet
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif /* EvenMoreFiles_H */
-